2022-05-27 09:00:09 +00:00
|
|
|
{
|
|
|
|
"ts-node": {
|
|
|
|
"files": true
|
|
|
|
},
|
|
|
|
"files": ["src/global.d.ts"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"composite": false,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"incremental": true,
|
|
|
|
"inlineSources": false,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"typeRoots": ["node_modules/@types", "src/global.d.ts"],
|
|
|
|
"target": "es6",
|
|
|
|
"noEmit": false,
|
|
|
|
"module": "commonjs",
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"paths": {
|
2022-05-27 13:04:54 +00:00
|
|
|
"~/*": ["/src/*"]
|
2022-05-27 09:00:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["src", "global.d.ts", "**/*.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|