Updates Prettier to major version 3, and also updates a couple prettier-related other things. Prelude to #1511 so that that PR doesn't include a bunch of unrelated changes
		
			
				
	
	
		
			35 lines
		
	
	
		
			758 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			758 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "compilerOptions": {
 | |
|     "outDir": "./dist/",
 | |
|     "module": "esnext",
 | |
|     "target": "es6",
 | |
|     "moduleResolution": "node",
 | |
|     "allowJs": true,
 | |
|     "strict": true,
 | |
|     "noImplicitAny": true,
 | |
|     "allowSyntheticDefaultImports": true,
 | |
|     "experimentalDecorators": true,
 | |
|     "importHelpers": true,
 | |
|     "sourceMap": true,
 | |
|     "inlineSources": true,
 | |
|     "skipLibCheck": true,
 | |
|     "plugins": [
 | |
|       {
 | |
|         "name": "ts-lit-plugin",
 | |
|         "strict": true,
 | |
|         "rules": {
 | |
|           "no-missing-import": "off",
 | |
|         },
 | |
|         "maxNodeModuleImportDepth": -1,
 | |
|       },
 | |
|     ],
 | |
|     "incremental": true,
 | |
|     "paths": {
 | |
|       "@/*": ["./src/*"],
 | |
|       "~assets/*": ["./src/assets/*"],
 | |
|     },
 | |
|   },
 | |
|   "include": ["**/*.ts"],
 | |
|   "exclude": ["node_modules"],
 | |
| }
 |