| 12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "outDir": "./build",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "allowImportingTsExtensions": false, // 允许导入.ts文件
- "noEmit": false, // 不输出.js文件
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "verbatimModuleSyntax": true
- },
- "include": [
- "**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|