2023-08-29 01:29:08 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2023-09-11 01:52:39 +00:00
|
|
|
"target": "esnext",
|
2023-08-29 01:29:08 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-09-11 01:52:39 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"rootDir": "tsbuild",
|
|
|
|
"outDir": "jsbuild",
|
2023-08-29 01:29:08 +00:00
|
|
|
},
|
2023-09-11 01:52:39 +00:00
|
|
|
"include": [ "tsbuild/**/*" ],
|
2023-08-29 01:29:08 +00:00
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-11 01:52:39 +00:00
|
|
|
|