2018-04-27 14:27:42 +01:00
|
|
|
{
|
2024-02-29 19:00:39 -03:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./",
|
|
|
|
"target": "ES2022",
|
2024-03-05 15:15:30 -03:00
|
|
|
"module": "Node16",
|
2024-02-29 19:00:39 -03: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 15:14:37 -03:00
|
|
|
"sync/**/*",
|
2024-02-29 19:00:39 -03:00
|
|
|
"build-utils/**/*"
|
|
|
|
]
|
2018-04-27 14:27:42 +01:00
|
|
|
}
|