28 lines
573 B
JSON
28 lines
573 B
JSON
// javascript for production
|
|
// {
|
|
// "compilerOptions": {
|
|
// "paths": {
|
|
// "@/*": ["./src/*"],
|
|
// "^/*": ["./public/*"]
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
// typescript for local development
|
|
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"^/*": ["./public/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|