This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Homework.app/tsconfig.json

30 lines
751 B
JSON
Raw Normal View History

2022-04-01 23:05:53 -03:00
{
2022-04-02 16:47:03 -03:00
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2022-04-02 17:53:18 -03:00
"incremental": true,
"paths": {
"@components": ["./src/components/*"],
"@content/*": ["./src/content/*"],
"@libs/*": ["./src/libs/*"],
"@hooks/*": ["./src/libs/hooks/*"],
"@pages/*": ["./src/pages/*"],
"@api/*": ["./src/pages/api/*"],
"@styles/*": ["./src/styles/*"]
}
2022-04-02 16:47:03 -03:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2022-04-01 23:05:53 -03:00
}