38 lines
935 B
JSON
38 lines
935 B
JSON
// {
|
|
// "compilerOptions": {
|
|
// "target": "ESNext",
|
|
// "module": "ESNext",
|
|
// "moduleResolution": "Node",
|
|
// "jsx": "react-jsx",
|
|
// "strict": false,
|
|
// "esModuleInterop": true,
|
|
// "skipLibCheck": true,
|
|
// "allowImportingTsExtensions": true,
|
|
// "resolveJsonModule": true,
|
|
// "isolatedModules": true,
|
|
// "allowJs": true,
|
|
// "checkJs": false
|
|
// },
|
|
// "include": ["src"]
|
|
// }
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"jsx": "react-jsx",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"ignoreDeprecations": "6.0",
|
|
"noEmit": true, // 或 "emitDeclarationOnly": true
|
|
"outDir": "./dist" // 避免文件覆盖
|
|
},
|
|
"include": ["src"]
|
|
}
|