reactemplate/tsconfig.json

18 lines
342 B
JSON
Raw Normal View History

2022-04-02 14:54:55 +08:00
{
"compilerOptions": {
"target": "es2016",
"lib": ["DOM", "ES6"],
"jsx": "react-jsx",
"module": "commonjs",
"rootDir": "./src",
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
2022-04-02 16:14:53 +08:00
"skipLibCheck": true,
"paths": {
"~/*": ["src/*"]
}
2022-04-02 14:54:55 +08:00
}
}