tsconfig.json 522 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "outDir": "./build",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "allowImportingTsExtensions": false, // 允许导入.ts文件
  11. "noEmit": false, // 不输出.js文件
  12. "forceConsistentCasingInFileNames": true,
  13. "allowSyntheticDefaultImports": true,
  14. "verbatimModuleSyntax": true
  15. },
  16. "include": [
  17. "**/*.ts"
  18. ],
  19. "exclude": [
  20. "node_modules"
  21. ]
  22. }