source: tsconfig.json@ 997d094

Last change on this file since 997d094 was 65f7b64, checked in by stefansaveski <stefansaveski19@…>, 12 months ago

Initial commit from Create Next App

  • Property mode set to 100644
File size: 602 bytes
Line 
1{
2 "compilerOptions": {
3 "target": "ES2017",
4 "lib": ["dom", "dom.iterable", "esnext"],
5 "allowJs": true,
6 "skipLibCheck": true,
7 "strict": true,
8 "noEmit": true,
9 "esModuleInterop": true,
10 "module": "esnext",
11 "moduleResolution": "bundler",
12 "resolveJsonModule": true,
13 "isolatedModules": true,
14 "jsx": "preserve",
15 "incremental": true,
16 "plugins": [
17 {
18 "name": "next"
19 }
20 ],
21 "paths": {
22 "@/*": ["./src/*"]
23 }
24 },
25 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26 "exclude": ["node_modules"]
27}
Note: See TracBrowser for help on using the repository browser.