mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
32 lines
621 B
JSON
32 lines
621 B
JSON
{
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"alwaysStrict": true,
|
|
// "allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"downlevelIteration": true,
|
|
"lib": [
|
|
"dom", // for URLSearchParams
|
|
"esnext"
|
|
],
|
|
"outDir": "dist"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"text"
|
|
]
|
|
} |