2018-04-27 13:27:42 +00:00
|
|
|
{
|
2024-02-29 22:00:39 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./",
|
|
|
|
"target": "ES2022",
|
2024-03-05 18:15:30 +00:00
|
|
|
"module": "Node16",
|
2024-02-29 22:00:39 +00:00
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"outDir": "./build/",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"paths": {
|
|
|
|
"~/src/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"~/lib/*": [
|
|
|
|
"src/lib/*"
|
|
|
|
],
|
|
|
|
"~/test-lib/*": [
|
|
|
|
"test/lib/*"
|
|
|
|
],
|
|
|
|
"~/test-data/*": [
|
|
|
|
"test/data/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
"test/**/*",
|
|
|
|
"typings/**/*.d.ts",
|
2024-03-05 18:14:37 +00:00
|
|
|
"sync/**/*",
|
2024-02-29 22:00:39 +00:00
|
|
|
"build-utils/**/*"
|
|
|
|
]
|
2018-04-27 13:27:42 +00:00
|
|
|
}
|