mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
38 lines
772 B
JSON
38 lines
772 B
JSON
// NOT A REAL TSCONFIG FILE
|
|
// THIS IS USED FOR VSCODE SO IT INTEGRATES NICELY
|
|
// IF YOU USE THIS TO BUILD, IT WILL ALSO BUILD THE TEST FILES!!
|
|
// SO, DONT DO THAT, USE TSCONFIG.BUILD.JSON FOR THE BUILD.
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": [
|
|
"ES2019"
|
|
],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"outDir": "./js",
|
|
"baseUrl": "src",
|
|
"typeRoots": [
|
|
"@types",
|
|
"node_modules/@types"
|
|
],
|
|
},
|
|
"ts-node": {
|
|
"require": [
|
|
"tsconfig-paths/register"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"scripts/single-use/counters.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
// "src/test-utils",
|
|
// "src/**/*.test.ts"
|
|
]
|
|
} |