2022-04-02 14:54:55 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2016",
|
|
|
|
"lib": ["DOM", "ES6"],
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"module": "commonjs",
|
|
|
|
"rootDir": "./src",
|
2022-04-02 17:36:26 +08:00
|
|
|
"baseUrl": "./",
|
2022-04-02 14:54:55 +08:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|