Files
checkout/tsconfig.json
T

14 lines
308 B
JSON
Raw Normal View History

2019-12-03 10:28:59 -05:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
2019-12-03 10:28:59 -05:00
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true
2019-12-03 10:28:59 -05:00
},
"exclude": ["__test__", "lib", "node_modules", "jest.config.ts"]
2019-12-03 10:28:59 -05:00
}