Miao-Yunzai/tsconfig.json

24 lines
569 B
JSON
Raw Normal View History

2024-06-08 20:52:49 +08:00
{
2024-06-08 21:07:07 +08:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"noImplicitAny": false,
"esModuleInterop": true,
"moduleResolution": "node",
"removeComments": true,
"preserveConstEnums": true,
"ignoreDeprecations": "5.0",
"jsx": "react",
"allowJs": false,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": ["node_modules/@types"]
},
"ts-node": {
"esm": true,
"transpileOnly": true,
"experimentalSpecifierResolution": "node"
},
"include": ["plugins", "lib", "src"],
"exclude": ["node_modules"]
}